Replace String
Command Prototype
sRet = Replace(sText,sSubText,sReplaceText,bCompare)
Command Description
Find and replace a substring in the string, and return the replaced string
Parameter Description
- Required Parameter
- sText--The string to operate
- sSubText--The substring to find and replace
- sReplaceText--The string used to replace the substring
- bCompare--Whether to be case sensitive when strings are compared
- return
- sRet--The variable used to save the output of the function call